home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / gnu / emacs.lha / emacs-19.16 / lisp / dissociate.el < prev    next >
Lisp/Scheme  |  1993-06-09  |  3KB  |  101 lines

  1. ;;; dissociate.el --- scramble text amusingly for Emacs.
  2.  
  3. ;; Copyright (C) 1985 Free Software Foundation, Inc.
  4.  
  5. ;; Maintainer: FSF
  6. ;; Keywords: games
  7.  
  8. ;; This file is part of GNU Emacs.
  9.  
  10. ;; GNU Emacs is free software; you can redistribute it and/or modify
  11. ;; it under the terms of the GNU General Public License as published by
  12. ;; the Free Software Foundation; either version 2, or (at your option)
  13. ;; any later version.
  14.  
  15. ;; GNU Emacs is distributed in the hope that it will be useful,
  16. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18. ;; GNU General Public License for more details.
  19.  
  20. ;; You should have received a copy of the GNU General Public License
  21. ;; along with GNU Emacs; see the file COPYING.  If not, write to
  22. ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  23.  
  24. ;;; Commentary:
  25.  
  26. ;; The single entry point, `dissociated-press', applies a travesty
  27. ;; generator to the current buffer.  The results can be quite amusing.
  28.  
  29. ;;; Code:
  30.  
  31. ;;;###autoload
  32. (defun dissociated-press (&optional arg)
  33.   "Dissociate the text of the current buffer.
  34. Output goes in buffer named *Dissociation*,
  35. which is redisplayed each time text is added to it.
  36. Every so often the user must say whether to continue.
  37. If ARG is positive, require ARG chars of continuity.
  38. If ARG is negative, require -ARG words of continuity.
  39. Default is 2."
  40.   (interactive "P")
  41.   (setq arg (if arg (prefix-numeric-value arg) 2))
  42.   (let* ((inbuf (current-buffer))
  43.      (outbuf (get-buffer-create "*Dissociation*"))
  44.      (move-function (if (> arg 0) 'forward-char 'forward-word))
  45.      (move-amount (if (> arg 0) arg (- arg)))
  46.      (search-function (if (> arg 0) 'search-forward 'word-search-forward))
  47.      (last-query-point 0))
  48.     (switch-to-buffer outbuf)
  49.     (erase-buffer)
  50.     (while
  51.       (save-excursion
  52.     (goto-char last-query-point)
  53.     (vertical-motion (- (window-height) 4))
  54.     (or (= (point) (point-max))
  55.         (and (progn (goto-char (point-max))
  56.             (y-or-n-p "Continue dissociation? "))
  57.          (progn
  58.            (message "")
  59.            (recenter 1)
  60.            (setq last-query-point (point-max))
  61.            t))))
  62.       (let (start end)
  63.     (save-excursion
  64.      (set-buffer inbuf)
  65.      (setq start (point))
  66.      (if (eq move-function 'forward-char)
  67.          (progn
  68.            (setq end (+ start (+ move-amount (random 16))))
  69.            (if (> end (point-max))
  70.            (setq end (+ 1 move-amount (random 16))))
  71.            (goto-char end))
  72.        (funcall move-function
  73.             (+ move-amount (random 16))))
  74.      (setq end (point)))
  75.     (let ((opoint (point)))
  76.       (insert-buffer-substring inbuf start end)
  77.       (save-excursion
  78.        (goto-char opoint)
  79.        (end-of-line)
  80.        (and (> (current-column) fill-column)
  81.         (do-auto-fill)))))
  82.       (save-excursion
  83.        (set-buffer inbuf)
  84.        (if (eobp)
  85.        (goto-char (point-min))
  86.      (let ((overlap
  87.         (buffer-substring (prog1 (point)
  88.                      (funcall move-function
  89.                           (- move-amount)))
  90.                   (point))))
  91.        (let (ranval)
  92.          (while (< (setq ranval (random)) 0))
  93.          (goto-char (1+ (% ranval (1- (point-max))))))
  94.        (or (funcall search-function overlap nil t)
  95.            (let ((opoint (point)))
  96.          (goto-char 1)
  97.          (funcall search-function overlap opoint t))))))
  98.       (sit-for 0))))
  99.  
  100. ;;; dissociate.el ends here
  101.